home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2013 October / SAN CD 10-2013 CD-ROM 101.iso / pc / issueMedia / Software / gp1v / Dsp6SEsetup.exe / Schema / dsp60 / dspcalc.xsd < prev    next >
Encoding:
Extensible Markup Language  |  2012-12-10  |  1.6 KB  |  44 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <xsd:schema targetNamespace="http://knightware.biz/dsp/schema"
  3.     xmlns:xsd="http://www.w3.org/2001/XMLSchema"  
  4.     xmlns:dsp="http://knightware.biz/dsp/schema" 
  5.     elementFormDefault="unqualified" 
  6.     attributeFormDefault="unqualified" 
  7.     version="6.0">
  8.     <xsd:annotation>
  9.         <xsd:documentation xml:lang="en">
  10.             Deep-Sky Planner ephemeris calculation document schema.
  11.             Copyright © 2012 Knightware, LLC. All rights reserved.
  12.         </xsd:documentation>
  13.     </xsd:annotation>
  14.     <xsd:element name="DspCalc">
  15.         <xsd:complexType>
  16.             <xsd:sequence>
  17.                 <!-- Location for ephemeral calculations -->
  18.                 <xsd:element name="sitename" type="xsd:string"/>
  19.                 <!-- Ephemeris time calculation period and frequency -->
  20.                 <xsd:element name="period">
  21.                     <xsd:complexType>
  22.                         <xsd:sequence>
  23.                             <xsd:element name="jdebegin" type="xsd:double"/>
  24.                             <xsd:element name="jdeend" type="xsd:double"/>
  25.                             <xsd:element name="skip" type="xsd:double" minOccurs="0"/>
  26.                         </xsd:sequence>
  27.                     </xsd:complexType>
  28.                 </xsd:element>
  29.                 <!-- Objects for which to perform a calculation -->
  30.                 <xsd:element name="objects">
  31.                     <xsd:complexType>
  32.                         <xsd:sequence>
  33.                             <xsd:element name="object" minOccurs="0" maxOccurs="unbounded" type="xsd:string"/>
  34.                         </xsd:sequence>
  35.                     </xsd:complexType>
  36.                 </xsd:element>
  37.             </xsd:sequence>
  38.             <!-- schemaVersion -->
  39.             <xsd:attribute name="schemaVersion" type="xsd:string" use="required"/>
  40.             <!-- producer -->
  41.             <xsd:attribute name="producer" type="xsd:string" use="optional"/>
  42.         </xsd:complexType>
  43.     </xsd:element>
  44. </xsd:schema>